Home 11th python COMPUTER # program to print first 29 numbers | python 0 minute read write a program to print first 29 natural numbers in python # program to print first 29 numbersi = 1while i<=29: print(i) i = i+1
Post a Comment